RemoveAt Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

This method must be overridden by the derived class to remove the item at the given index.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public abstract void RemoveAt(
	int index
)
Visual Basic (Declaration)
Public MustOverride Sub RemoveAt ( _
	index As Integer _
)
Visual C++
public:
virtual void RemoveAt (
	int index
) abstract

Parameters

index
Int32
The index in the list to remove the item at. The first item in the list has index 0.

Exceptions

ExceptionCondition
System..::ArgumentOutOfRangeExceptionindex is less than zero or greater than or equal to Count.

See Also